bitkeeper revision 1.1743 (42baabd1aq7F8kKY4ptBZ39ebtEqOw)
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Thu, 23 Jun 2005 12:32:17 +0000 (12:32 +0000)
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Thu, 23 Jun 2005 12:32:17 +0000 (12:32 +0000)
null_set_binary_policy() should return ACM_OK instead of -1. This
patch also makes few cleanups.

Signed-off-by: Nguyen Anh Quynh <aquynh@gmail.com>
xen/acm/acm_null_hooks.c

index 6433cbfed614a772fead8f97de15dff3f7a2eb31..ce5b2b5453449bb4fc02963aa90eca5b60bbb0a7 100644 (file)
@@ -19,28 +19,23 @@ null_init_domain_ssid(void **chwall_ssid, ssidref_t ssidref)
        return ACM_OK;
 }
 
-
 static void
 null_free_domain_ssid(void *chwall_ssid)
 {
        return;
 }
 
-
 static int
 null_dump_binary_policy(u8 *buf, u16 buf_size) 
 {      
        return 0;
 }
 
-
-
 static int
 null_set_binary_policy(u8 *buf, u16 buf_size) 
 {      
-       return -1;
+       return ACM_OK;
 }
-
        
 static int 
 null_dump_stats(u8 *buf, u16 buf_size)
@@ -49,7 +44,6 @@ null_dump_stats(u8 *buf, u16 buf_size)
        return 0;
 }
 
-
 /* now define the hook structure similarly to LSM */
 struct acm_operations acm_null_ops = {
        .init_domain_ssid               = null_init_domain_ssid,
@@ -72,5 +66,4 @@ struct acm_operations acm_null_ops = {
        .fail_grant_map_ref             = NULL,
        .pre_grant_setup                = NULL,
        .fail_grant_setup               = NULL
-
 };